home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscheap2 / dump.c < prev    next >
C/C++ Source or Header  |  1990-03-07  |  291b  |  19 lines

  1.         #include <stdio.h>
  2.  
  3.         //
  4.         //  Example of _heapdump from heap.man
  5.         //
  6.  
  7.         #include <heap.h>
  8.  
  9.         int main()
  10.         {
  11.         _fmalloc( 1000 );
  12.  
  13.         _fmalloc( 2000 );
  14.  
  15.         _fheapdump( stdout, 1 );
  16.  
  17.         return( 0 );
  18.         }
  19.